You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 rivejä
400 B

  1. import fetch from 'node-fetch'
  2. export default eventHandler(async (req) => {
  3. const id = req.context.params?.id || ''
  4. const url = `https://api.themoviedb.org/3/movie/${id}`
  5. const config = useRuntimeConfig(req)
  6. const response = await fetch(url, {
  7. method: 'get',
  8. headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
  9. })
  10. return await response.json()
  11. })